home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1
/
Nebula One.iso
/
Mail
/
pine3.92
/
pine
/
osdep
/
fnexpand.dos
< prev
next >
Wrap
Text File
|
1993-07-15
|
392b
|
18 lines
/*----------------------------------------------------------------------
Does nothing on dos since ~ is meaningless
Args: buf -- The filename to expand (nothing happens unless begins with ~)
len -- The length of the buffer passed in (expansion is in place)
Result: buf is returned
----*/
char *
fnexpand(buf, len)
char *buf;
int len;
{
return(buf);
}